iT邦幫忙

0

(11)Python的基礎介紹和爬蟲

  • 分享至 

  • xImage
  •  

函式參數

def 函式名稱(參數名稱=預設資料):
函式內部的程式碼

名稱對應
def 函式名稱(名稱1,名稱2):
函式內部的程式碼
#呼叫函式,以參數名稱對應資料
函式名稱(名稱2=3,名稱1=5) 可以不受位置的影響

def div(n1,n2):
print( n1/n2 )
div(2,4)#印出0.5
div(n2=2,n1=4)#印出2.0

https://ithelp.ithome.com.tw/upload/images/20221002/201527243o4fZaYy5l.png

無限參數
def 函式名稱(*無限參數):
無限參數以tuple資料形態處理
函式內部的程式碼
#呼叫函式,可傳入無限筆資料
函式名稱(資料1,資料2,資料3...)

https://ithelp.ithome.com.tw/upload/images/20221002/20152724dNvZAhh6Yh.png

如果沒有定義原本的數值會發生error
https://ithelp.ithome.com.tw/upload/images/20221002/20152724UgH5NPue94.png
https://ithelp.ithome.com.tw/upload/images/20221002/20152724vp0x1hsNom.png

參考資料:https://www.youtube.com/watch?v=OOJmhezLd4o&list=PL-g0fdC5RMboYEyt6QS2iLb_1m7QcgfHk&index=10


圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言